/home/user/Desktop/CHUI <KIRUBI>/vapeshop <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contact Us - Vape Shop</title>
    <style>
        /* Keep the same styles as in the previous example */
    </style>
</head>
<body>
    <header>
        <h1>Vape Shop</h1>
    </header>

    <div class="container">
        <h2>Contact Us</h2>
        
        <div class="form-container">
            <form action="/" method="POST">
                <input type="text" name="name" placeholder="Your Name" required>
                <input type="email" name="email" placeholder="Your Email" required>
                <textarea name="message" placeholder="Your Message" required></textarea>
                <button type="submit">Send Message</button>
            </form>

            <div class="contact-info">
                <h3>Our Location</h3>
                <p>123 Vape Street, Cloud City, VapeLand</p>
                <p>Email: contact@vape-shop.com</p>
                <p>Phone: +123-456-7890</p>
            </div>
        </div>

        <div class="map-container">
            <iframe src="https://www.google.com/maps/embed?pb=..."></iframe>
        </div>
    </div>
</body>
</html>

